home *** CD-ROM | disk | FTP | other *** search
- //----------------------------------------------------------------------------
- // File: EnumHosts.cpp
- //
- // Desc: This simple program builds upon the last tutorial and adds enumerating
- // the hosts at a given target address
- //
- // Copyright (c) 2000-2001 Microsoft Corp. All rights reserved.
- //-----------------------------------------------------------------------------
- #define INITGUID
- #define _WIN32_DCOM
- #include <stdio.h>
- #include <conio.h>
- #include <dplay8.h>
-
-
-
-
- //-----------------------------------------------------------------------------
- // App specific structures
- //-----------------------------------------------------------------------------
- struct HOST_NODE
- {
- DPN_APPLICATION_DESC* pAppDesc;
- IDirectPlay8Address* pHostAddress;
- WCHAR* pwszSessionName;
-
- HOST_NODE* pNext;
- };
-
-
- //-----------------------------------------------------------------------------
- // Global variables
- //-----------------------------------------------------------------------------
- IDirectPlay8Peer* g_pDP = NULL;
- IDirectPlay8Address* g_pDeviceAddress = NULL;
- IDirectPlay8Address* g_pHostAddress = NULL;
- BOOL g_bHost;
- HOST_NODE* g_pHostList = NULL;
- CRITICAL_SECTION g_csHostList;
-
-
- // This GUID allows DirectPlay to find other instances of the same game on
- // the network. So it must be unique for every game, and the same for
- // every instance of that game. // {358E1C8D-DB4A-4867-B2C3-DEF3F5046B17}
- GUID g_guidApp = { 0x358e1c8d, 0xdb4a, 0x4867, { 0xb2, 0xc3, 0xde, 0xf3, 0xf5, 0x4, 0x6b, 0x17 } };
-
-
- //-----------------------------------------------------------------------------
- // Function-prototypes
- //-----------------------------------------------------------------------------
- HRESULT WINAPI DirectPlayMessageHandler(PVOID pvUserContext, DWORD dwMessageId, PVOID pMsgBuffer);
- BOOL IsServiceProviderValid(const GUID* pGuidSP);
- HRESULT InitDirectPlay();
- HRESULT CreateDeviceAddress();
- HRESULT CreateHostAddress(WCHAR* pwszHost);
- HRESULT HostSession();
- HRESULT EnumDirectPlayHosts();
- void CleanupDirectPlay();
-
-
- //-----------------------------------------------------------------------------
- // Miscellaneous helper functions
- //-----------------------------------------------------------------------------
- #define SAFE_DELETE(p) {if(p) {delete (p); (p)=NULL;}}
- #define SAFE_DELETE_ARRAY(p) {if(p) {delete[] (p); (p)=NULL;}}
- #define SAFE_RELEASE(p) {if(p) {(p)->Release(); (p)=NULL;}}
-
- #define USER_HOST 1
- #define USER_CONNECT 2
-
-
-
-
- //-----------------------------------------------------------------------------
- // Name: main()
- // Desc: Entry point for the application.
- //-----------------------------------------------------------------------------
- int main(int argc, char* argv[], char* envp[])
- {
- HRESULT hr;
- int iUserChoice;
-
- // Init COM so we can use CoCreateInstance
- CoInitializeEx(NULL, COINIT_MULTITHREADED);
-
- // Init the DirectPlay system
- if( FAILED( hr = InitDirectPlay() ) )
- {
- printf("Failed Initializing DirectPlay: 0x%X\n", hr);
- goto LFail;
- }
-
- InitializeCriticalSection(&g_csHostList);
-
- // Get the necessary user input on whether they are hosting or connecting
- do
- {
- printf("Please select one.\n1. Host\n2. Connect\n");
- scanf("%d", &iUserChoice);
- } while (iUserChoice != USER_HOST && iUserChoice != USER_CONNECT);
-
-
- if( FAILED( hr = CreateDeviceAddress() ) )
- {
- printf("Failed CreatingDeviceAddress: 0x%X\n", hr);
- goto LFail;
- }
-
- if( iUserChoice == USER_HOST )
- {
- if( FAILED( hr = HostSession() ) )
- {
- printf("Failed Hosting: 0x%X\n", hr);
- goto LFail;
- }
- }
- else
- {
- if( FAILED( hr = EnumDirectPlayHosts() ) )
- {
- printf("Failed Enumerating Host: 0x%X\n", hr);
- goto LFail;
- }
- }
-
- LFail:
- CleanupDirectPlay();
-
- // Cleanup COM
- CoUninitialize();
-
- return 0;
- }
-
-
-
-
- //-----------------------------------------------------------------------------
- // Name: InitDirectPlay()
- // Desc: Initialize DirectPlay
- //-----------------------------------------------------------------------------
- HRESULT InitDirectPlay()
- {
- HRESULT hr = S_OK;
-
- // Create the IDirectPlay8Peer Object
- if( FAILED( hr = CoCreateInstance( CLSID_DirectPlay8Peer, NULL,
- CLSCTX_INPROC_SERVER,
- IID_IDirectPlay8Peer,
- (LPVOID*) &g_pDP ) ) )
- {
- printf("Failed Creating the IDirectPlay8Peer Object: 0x%X\n", hr);
- goto LFail;
- }
-
- // Init DirectPlay
- if( FAILED( hr = g_pDP->Initialize(NULL, DirectPlayMessageHandler, 0 ) ) )
- {
- printf("Failed Initializing DirectPlay: 0x%X\n", hr);
- goto LFail;
- }
-
- // Ensure that TCP/IP is a valid Service Provider
- if( FALSE == IsServiceProviderValid(&CLSID_DP8SP_TCPIP ) )
- {
- hr = E_FAIL;
- printf("Failed validating CLSID_DP8SP_TCPIP");
- goto LFail;
- }
-
- LFail:
- return hr;
- }
-
-
-
-
- //-----------------------------------------------------------------------------
- // Name: IsServiceProviderValid()
- // Desc: Return TRUE if the service provider is valid
- //-----------------------------------------------------------------------------
- BOOL IsServiceProviderValid(const GUID* pGuidSP)
- {
- HRESULT hr;
- DPN_SERVICE_PROVIDER_INFO* pdnSPInfo = NULL;
- DWORD dwItems = 0;
- DWORD dwSize = 0;
-
- hr = g_pDP->EnumServiceProviders( &CLSID_DP8SP_TCPIP, NULL, NULL,
- &dwSize, &dwItems, 0);
-
- if( hr != DPNERR_BUFFERTOOSMALL)
- {
- printf("Failed Enumerating Service Providers: 0x%x\n", hr);
- goto LFail;
- }
-
- pdnSPInfo = (DPN_SERVICE_PROVIDER_INFO*) new BYTE[dwSize];
-
- if( FAILED( hr = g_pDP->EnumServiceProviders( &CLSID_DP8SP_TCPIP, NULL, pdnSPInfo,
- &dwSize, &dwItems, 0 ) ) )
- {
- printf("Failed Enumerating Service Providers: 0x%x\n", hr);
- goto LFail;
- }
-
- // There are no items returned so the requested SP is not available
- if( dwItems == 0)
- {
- hr = E_FAIL;
- }
-
- LFail:
- SAFE_DELETE_ARRAY(pdnSPInfo);
-
- if( SUCCEEDED(hr) )
- return TRUE;
- else
- return FALSE;
- }
-
-
-
-
- //-----------------------------------------------------------------------------
- // Name: DirectPlayMessageHandler
- // Desc: Handler for DirectPlay messages. This tutorial only responds to the
- // DPN_MSGID_ENUM_HOSTS_RESPONSE message.
- //-----------------------------------------------------------------------------
- HRESULT WINAPI DirectPlayMessageHandler( PVOID pvUserContext, DWORD dwMessageId,
- PVOID pMsgBuffer )
- {
- HRESULT hr = S_OK;
-
- switch( dwMessageId )
- {
- case DPN_MSGID_ENUM_HOSTS_RESPONSE:
- {
- PDPNMSG_ENUM_HOSTS_RESPONSE pEnumHostsResponseMsg;
- const DPN_APPLICATION_DESC* pAppDesc;
- HOST_NODE* pHostNode = NULL;
- WCHAR* pwszSession = NULL;
-
- pEnumHostsResponseMsg = (PDPNMSG_ENUM_HOSTS_RESPONSE) pMsgBuffer;
- pAppDesc = pEnumHostsResponseMsg->pApplicationDescription;
-
- // Insert each host response if it isn't already present
- EnterCriticalSection(&g_csHostList);
-
- for (pHostNode = g_pHostList; pHostNode; pHostNode = pHostNode->pNext)
- {
- if( pAppDesc->guidInstance == pHostNode->pAppDesc->guidInstance)
- {
- // This host is already in the list
- pHostNode = NULL;
- goto Break_ENUM_HOSTS_RESPONSE;
- }
- }
-
- // This host session is not in the list then so insert it.
- pHostNode = new HOST_NODE;
- if( pHostNode == NULL)
- {
- goto Break_ENUM_HOSTS_RESPONSE;
- }
-
- ZeroMemory(pHostNode, sizeof(HOST_NODE));
-
- // Copy the Host Address
- if( FAILED( pEnumHostsResponseMsg->pAddressSender->Duplicate(&pHostNode->pHostAddress ) ) )
- {
- goto Break_ENUM_HOSTS_RESPONSE;
- }
-
- pHostNode->pAppDesc = new DPN_APPLICATION_DESC;
-
- if( pHostNode == NULL)
- {
- goto Break_ENUM_HOSTS_RESPONSE;
- }
-
- ZeroMemory(pHostNode->pAppDesc, sizeof(DPN_APPLICATION_DESC));
- memcpy(pHostNode->pAppDesc, pAppDesc, sizeof(DPN_APPLICATION_DESC));
-
- // Null out all the pointers we aren't copying
- pHostNode->pAppDesc->pwszSessionName = NULL;
- pHostNode->pAppDesc->pwszPassword = NULL;
- pHostNode->pAppDesc->pvReservedData = NULL;
- pHostNode->pAppDesc->dwReservedDataSize = 0;
- pHostNode->pAppDesc->pvApplicationReservedData = NULL;
- pHostNode->pAppDesc->dwApplicationReservedDataSize = 0;
-
- if( pAppDesc->pwszSessionName)
- {
- pwszSession = new WCHAR[wcslen(pAppDesc->pwszSessionName) + 1];
-
- if( pwszSession)
- {
- wcscpy(pwszSession, pAppDesc->pwszSessionName);
- }
- }
-
- pHostNode->pwszSessionName = pwszSession;
-
- // Insert it onto the front of the list
- pHostNode->pNext = g_pHostList ? g_pHostList->pNext : NULL;
- g_pHostList = pHostNode;
- pHostNode = NULL;
-
- Break_ENUM_HOSTS_RESPONSE:
- LeaveCriticalSection(&g_csHostList);
-
- if( pHostNode )
- {
- SAFE_RELEASE(pHostNode->pHostAddress);
- SAFE_DELETE(pHostNode->pAppDesc);
- delete pHostNode;
- }
-
- break;
- }
- }
- return hr;
- }
-
-
-
-
- //-----------------------------------------------------------------------------
- // Name: EnumDirectPlayHosts()
- // Desc: Enumerates the hosts
- //-----------------------------------------------------------------------------
- HRESULT EnumDirectPlayHosts()
- {
- HRESULT hr = S_OK;
- WCHAR wszHost[128];
- DPN_APPLICATION_DESC dpAppDesc;
- WCHAR* pwszURL = NULL;
- HOST_NODE* pHostNode = NULL;
- DWORD dwNumChars = 0;
-
- // Prompt for the hostname/ip
- printf("\nPlease enter the IP address of host:\n");
- wscanf(L"%ls", wszHost);
-
- if( FAILED( hr = CreateHostAddress( wszHost ) ) )
- {
- printf("Failed Creating Host Address: 0x%X\n", hr);
- goto LFail;
- }
-
-
- // Now set up the Application Description
- ZeroMemory(&dpAppDesc, sizeof(DPN_APPLICATION_DESC));
- dpAppDesc.dwSize = sizeof(DPN_APPLICATION_DESC);
- dpAppDesc.guidApplication = g_guidApp;
-
- // We now have the host address so lets enum
- if( FAILED( hr = g_pDP->EnumHosts( &dpAppDesc, // pApplicationDesc
- g_pHostAddress, // pdpaddrHost
- g_pDeviceAddress, // pdpaddrDeviceInfo
- NULL, 0, // pvUserEnumData, size
- 4, // dwEnumCount
- 0, // dwRetryInterval
- 0, // dwTimeOut
- NULL, // pvUserContext
- NULL, // pAsyncHandle
- DPNENUMHOSTS_SYNC ) ) ) // dwFlags
- {
- printf("Failed Enumerating the Hosts: 0x%X\n", hr);
- goto LFail;
- }
-
-
- // Go through and print out all the hosts URL's that we found
- EnterCriticalSection(&g_csHostList);
-
- for (pHostNode = g_pHostList; pHostNode; pHostNode = pHostNode->pNext, dwNumChars = 0)
- {
- hr = pHostNode->pHostAddress->GetURLW(NULL, &dwNumChars);
-
- if( hr == DPNERR_BUFFERTOOSMALL)
- {
- pwszURL = new WCHAR[dwNumChars];
-
- if( pwszURL && SUCCEEDED(hr = pHostNode->pHostAddress->GetURLW(pwszURL, &dwNumChars ) ) )
- {
- printf("Found a Session Called %S at Address: %S\n", pHostNode->pwszSessionName, pwszURL);
- }
- }
-
- SAFE_DELETE_ARRAY(pwszURL);
- }
-
- LeaveCriticalSection(&g_csHostList);
-
- LFail:
- return hr;
- }
-
-
-
-
- //-----------------------------------------------------------------------------
- // Name: CreateDeviceAddress()
- // Desc: Creates a device address
- //-----------------------------------------------------------------------------
- HRESULT CreateDeviceAddress()
- {
- HRESULT hr = S_OK;
-
- // Create our IDirectPlay8Address Device Address
- if( FAILED( hr = CoCreateInstance( CLSID_DirectPlay8Address, NULL,
- CLSCTX_INPROC_SERVER,
- IID_IDirectPlay8Address,
- (LPVOID*) &g_pDeviceAddress ) ) )
- {
- printf("Failed Creating the IDirectPlay8Address Object: 0x%X\n", hr);
- goto LFail;
- }
-
- // Set the SP for our Device Address
- if( FAILED( hr = g_pDeviceAddress->SetSP( &CLSID_DP8SP_TCPIP ) ) )
- {
- printf("Failed Setting the Service Provider: 0x%X\n", hr);
- goto LFail;
- }
-
- LFail:
- return hr;
- }
-
-
-
-
- //-----------------------------------------------------------------------------
- // Name: CreateHostAddress()
- // Desc: Creates a host address
- //-----------------------------------------------------------------------------
- HRESULT CreateHostAddress(WCHAR* pwszHost)
- {
- HRESULT hr = S_OK;
-
- // Create our IDirectPlay8Address Host Address
- if( FAILED( hr = CoCreateInstance( CLSID_DirectPlay8Address, NULL,
- CLSCTX_INPROC_SERVER,
- IID_IDirectPlay8Address,
- (LPVOID*) &g_pHostAddress ) ) )
- {
- printf("Failed Creating the IDirectPlay8Address Object: 0x%X\n", hr);
- goto LFail;
- }
-
- // Set the SP for our Host Address
- if( FAILED( hr = g_pHostAddress->SetSP( &CLSID_DP8SP_TCPIP ) ) )
- {
- printf("Failed Setting the Service Provider: 0x%X\n", hr);
- goto LFail;
- }
-
- // Set the hostname into the address
- if( FAILED( hr = g_pHostAddress->AddComponent( DPNA_KEY_HOSTNAME, pwszHost,
- 2*(wcslen(pwszHost) + 1), /*bytes*/
- DPNA_DATATYPE_STRING ) ) )
- {
- printf("Failed Adding Hostname to Host Address: 0x%X\n", hr);
- goto LFail;
- }
-
- LFail:
- return hr;
- }
-
-
-
-
- //-----------------------------------------------------------------------------
- // Name: HostSession()
- // Desc: Host a DirectPlay session
- //-----------------------------------------------------------------------------
- HRESULT HostSession()
- {
- HRESULT hr = S_OK;
- DPN_APPLICATION_DESC dpAppDesc;
- WCHAR wszSession[128];
-
-
- // Prompt the user for the session name
- printf("\nPlease Enter a Session Name.\n");
- wscanf(L"%ls", wszSession);
-
- // Now set up the Application Description
- ZeroMemory(&dpAppDesc, sizeof(DPN_APPLICATION_DESC));
- dpAppDesc.dwSize = sizeof(DPN_APPLICATION_DESC);
- dpAppDesc.guidApplication = g_guidApp;
- dpAppDesc.pwszSessionName = wszSession;
-
- // We are now ready to host the app
- if( FAILED( hr = g_pDP->Host( &dpAppDesc, // AppDesc
- &g_pDeviceAddress, 1, // Device Address
- NULL, NULL, // Reserved
- NULL, // Player Context
- 0 ) ) ) // dwFlags
- {
- printf("Failed Hosting: 0x%X\n", hr);
- goto LFail;
- }
- else
- {
- printf("Currently Hosting...\n");
- printf("Press a key to exit\n");
- _getch();
- }
-
-
- LFail:
- return hr;
- }
-
-
-
-
- //-----------------------------------------------------------------------------
- // Name: CleanupDirectPlay()
- // Desc: Cleanup DirectPlay
- //-----------------------------------------------------------------------------
- void CleanupDirectPlay()
- {
- HOST_NODE* pHostNode = NULL;
- HOST_NODE* pHostNodetmp = NULL;
-
- // Cleanup DirectPlay
- if( g_pDP)
- g_pDP->Close(0);
-
- // Clean up Host list
- EnterCriticalSection(&g_csHostList);
-
- pHostNode = g_pHostList;
- while( pHostNode != NULL )
- {
- SAFE_RELEASE(pHostNode->pHostAddress);
- SAFE_DELETE(pHostNode->pAppDesc);
- SAFE_DELETE(pHostNode->pwszSessionName);
-
- pHostNodetmp = pHostNode;
- pHostNode = pHostNode->pNext;
- SAFE_DELETE(pHostNodetmp);
- }
-
- LeaveCriticalSection(&g_csHostList);
-
- SAFE_RELEASE(g_pDeviceAddress);
- SAFE_RELEASE(g_pHostAddress);
- SAFE_RELEASE(g_pDP);
-
- DeleteCriticalSection(&g_csHostList);
- }
-